home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / dos_win / winsock / maillist / 94-03.Z / 94-03 / text0410.txt < prev    next >
Encoding:
Text File  |  1994-03-30  |  8.1 KB  |  267 lines

  1. In article <1994Mar28.231220.54674@slate.mines.colorado.edu>  
  2. gfunkey@mines.colorado.edu writes:
  3. } When running Winsock V1.0 rev A with Wnmosaic version 2.0 alpha 1, everything
  4. } runs fine if I connect via SLIP.  Using a Xircom parallel port interface to  
  5. our
  6. } network results in Wnmosaic reporting an "undefined dynalink" error on  
  7. startup
  8. } and then it just neatly closes up.  Hgopher and QVT run fine in either mode.
  9. } Here's what I'm running and the order it's loaded (with version nos in  
  10. parens.)
  11. } Xircom EPP (1.10)
  12. } LSL (2.01)
  13. } pe2odi (MLID V1.44)
  14. } odipkt (2.1)
  15. } winpkt
  16. } pktint (3.0)
  17. } ipxodi (2.10)
  18. } netx (3.26) 
  19. } It must have something to do with the Xircom software.  Anyone else doing  
  20. this?
  21. } Any ideas or suggestions??
  22. } Thanks.
  23.  
  24. 1) Missing DLL
  25. 2) The function you called in NOT in the DLL
  26. 3) There are more than ONE WINSOCK.DLL in your PATH
  27. 4) When you compile the program in your DEF file you have to say "IMPORTS:  
  28. WINSOCK.WSAGETLASTERROR"  (not WINSOCK.WSAGetLastError) [Note: This F***ING bug  
  29. took us more than a week to figure it out...)
  30. --
  31. Derek Kwan
  32. +=========================================+
  33. | dkwan@zeus.UWaterloo.ca (NeXT mail OK!) | 
  34. | dkwan@SYSTEMS.watstar.UWaterloo.ca      |
  35. | dkwan@caisu.ists.ca                     |
  36. +=========================================+ 
  37. From news@bigblue.oit.unc.edu Wed Mar 30 15:36:13 1994
  38. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  39.           id AA07381; Wed, 30 Mar 1994 13:12:07 -0500
  40. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  41.           id AA17327; Wed, 30 Mar 1994 13:10:14 -0500
  42. Received: from GATEWAY by bigblue with netnews
  43.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  44. To: winsock@sunsite.unc.edu
  45. Date: Wed, 30 Mar 1994 15:36:13 GMT
  46. From: dkwan@zeus.UWaterloo.ca (Derek Kwan)
  47. Message-Id: <CnHI0D.5rv@watserv2.uwaterloo.ca>
  48. Organization: University of Waterloo
  49. Sender: ses
  50. References: <CnECz2.4H5@ucdavis.edu>
  51. Reply-To: dkwan@zeus.UWaterloo.ca
  52. Subject: How to send data between PCs using WINSOCK(Was: Help on Winsock)
  53.  
  54. In article <CnECz2.4H5@ucdavis.edu> ez003190@dale.ucdavis.edu (Jimmy Ip)  
  55. writes:
  56. } David Owens (owens@vu-vlsi.ee.vill.edu) wrote:
  57. } : Hi,
  58. } :   I was wondering if someone could mail me the
  59. } : FAQ (if you have one).  If you don't have one,
  60. } : could you give a breif explaination of what 
  61. } : winsock is and how it works?
  62. } : Thanks,
  63. } : Dave o    owens@vu-vlsi.vill.edu
  64. } :           dowens@bluefish.nosc.mil
  65. } If there is one, can someone post it or email it to me
  66. } jimmy.ip@ucdavis.edu
  67. } thanks 
  68. } - JImmy Ip
  69.  
  70. Well after I spended more than a week, finally I have been able send data  
  71. between machines.... here are the steps 
  72.  
  73.     Server            Client
  74.     WSAStartup        WSAStartup
  75.     Socket            Socket
  76.     Bind            
  77.     Listen
  78.     Accept            Connect
  79.     
  80. After this step....
  81.     
  82.     Accept will return a NEW socket, use that one to communicate with  
  83. client's "CONNECT SOCKET"
  84.  
  85.     and the "LISTEN SOCKET" on server will remain as Listen socket, and  
  86. another client require for "Connect" will have to connect to the Server Lisent  
  87. socket....
  88.  
  89. --
  90. Derek Kwan
  91. +=========================================+
  92. | dkwan@zeus.UWaterloo.ca (NeXT mail OK!) | 
  93. | dkwan@SYSTEMS.watstar.UWaterloo.ca      |
  94. | dkwan@caisu.ists.ca                     |
  95. +=========================================+ 
  96. From news@bigblue.oit.unc.edu Wed Mar 30 22:44:59 1994
  97. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  98.           id AA12382; Wed, 30 Mar 1994 13:42:05 -0500
  99. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  100.           id AA30978; Wed, 30 Mar 1994 13:17:39 -0500
  101. Received: from GATEWAY by bigblue with netnews
  102.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  103. To: winsock@sunsite.unc.edu
  104. Date: Wed, 30 Mar 1994 22:44:59 GMT
  105. From: I3294@dc.dk (Peter E. Cordsen)
  106. Message-Id: <I3294.361.0011C078@dc.dk>
  107. Organization: DataCentralen
  108. Sender: ses
  109. References: <CnCtBs.C00@actrix.gen.nz>
  110. Subject: Re: TN3270 and WinSock
  111.  
  112. In article <CnCtBs.C00@actrix.gen.nz> hugp@actrix.gen.nz (Peter Hug) writes:
  113. >From: hugp@actrix.gen.nz (Peter Hug)
  114. >Subject: TN3270 and WinSock
  115. >Date: Mon, 28 Mar 1994 02:52:40 GMT
  116.  
  117. >Hi there
  118.  
  119. >I am in deep waters and need your help. I recently developed an object
  120. >oriented interface (C++) enabling a MS-Windows application to exchange 
  121. >data with an IBM host. The interface currently supports APPC and HLLAPI 
  122. >(and multiple implementations of each standard).
  123. >I have now been approached to implement a TCP/IP interface also. This
  124. >should enable users of the MS-Windows based application to access the
  125. >IBM host via modem (SLIP) or network. While I do realize that I will 
  126. >have to use WINSOCK.DLL to establish a connection to the IBM host, I 
  127. >am somewhat tapping in the dark what I can expect (mainly because I 
  128. >have not been able to establish a propper SLIP connection :-(, which 
  129. >is another problem I am currently facing).
  130. >If you have had exposure to TN3270 (TELNET?) and one of HLLAPI/APPC, 
  131. >I would be pleased to hear from you. If you know of source code (that
  132. >is available via FTP) that implements TN3270 emulation via WinSock, that
  133. >would be fantastic. Otherwise, I am interested in any literature that
  134. >covers this topic. Thanks in advance.
  135.  
  136. I know of several commercial tn3270-applications for windows. Both RUMBA, 
  137. Attachmate's Extra and DCA's IRMA ordinary 3270-products support tn3270 under 
  138. Windows and HLLAPI, and at least DCA does it on top of winsock.
  139.  
  140. Further there's a cheap tn3270 from McGill University software, which also has 
  141. both HLLAPI and winsock interfaces.
  142.  
  143. Depending on what you want you can of course make a real client/server 
  144. application on top of winsock and IBM's sockets interface on either TSO, CICS 
  145. or IMS (next version).
  146.  
  147. /Peter E. Cordsen
  148. DanComputerManagement,
  149. pec@dc.dk
  150. From news@bigblue.oit.unc.edu Wed Mar 30 15:51:49 1994
  151. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  152.           id AA12391; Wed, 30 Mar 1994 13:42:06 -0500
  153. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  154.           id AA22359; Wed, 30 Mar 1994 13:26:45 -0500
  155. Received: from GATEWAY by bigblue with netnews
  156.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  157. To: winsock@sunsite.unc.edu
  158. Date: 30 Mar 94 15:51:49 GMT
  159. From: slawek@aries.scs.uiuc.edu (Slawomir Z. Janicki)
  160. Message-Id: <slawek.765042709@aries>
  161. Organization: University of Illinois at Urbana
  162. Sender: ses
  163. References: <2nbmve$qqr@solid.theo-physik.uni-kiel.de>
  164. Subject: Re: problem installing MS TCP/IP-32 March Beta
  165.  
  166. axel@hp1.ang-physik.uni-kiel.dbp.de (Axel Sommerfeldt) writes:
  167.  
  168. >I've problems installing the MS TCP/IP-32 packet (March Beta) on my
  169. >computer (WfW 3.11 german). After selecting OK in the Install Driver dialog
  170. >box all files are copied correctly, but after this the dialog box stay top
  171. >and do not disappear (so I can only leave this box by cancel)!
  172.  
  173. >So I can't install the packet the normal way, BUT:
  174.  
  175. >Can somebody who has installed the packet successfully send me his
  176. >PROTOKOLL.INI and the importent parts of his SYSTEM.INI, so I can
  177. >install the packet manually? This would by very kindly!
  178.  
  179. >Regards, Axel
  180.  
  181. PROTOCOL.INI
  182.  
  183. [network.setup]
  184. version=0x3110
  185. netcard=ms$w13ew,1,MS$W13EW,3
  186. transport=ms$netbeui,NETBEUI
  187. transport=ms$ndishlp,MS$NDISHLP
  188. transport=tcpip32,MSTCP32
  189. lana0=ms$w13ew,1,ms$netbeui
  190. lana1=ms$w13ew,1,ms$ndishlp
  191. lana2=ms$w13ew,1,tcpip32
  192.  
  193. [protman]
  194. DriverName=PROTMAN$
  195. PRIORITY=MS$NDISHLP
  196.  
  197. [MS$W13EW]
  198. DriverName=SMCMAC$
  199. irq=10
  200. iobase=0x240
  201. ramaddress=0xd000
  202.  
  203. [SMC8000W]       
  204. Adapters=MS$W13EW
  205.  
  206. [NETBEUI]
  207. DriverName=netbeui$
  208. SESSIONS=10
  209. NCBS=12
  210. BINDINGS=MS$W13EW
  211. LANABASE=0
  212.  
  213. [MS$NDISHLP]
  214. DriverName=ndishlp$
  215. BINDINGS=MS$W13EW
  216. LANABASE=1
  217.  
  218. [MSTCP32]
  219. BINDINGS=MS$W13EW
  220. LANABASE=1
  221.  
  222.  
  223. **********************************
  224.  
  225. SYSTEM.INI
  226.  
  227. [network drivers]
  228. netcard=smcmac.dos
  229. transport=*netbeui,ndishlp.sys
  230. devdir=C:\WINDOWS
  231. LoadRMDrivers=No
  232.  
  233.  
  234. [MSTCP]
  235. WINSProxy=0
  236. EnableRouting=0
  237. WINSenableDNS=0
  238.  
  239. Interfaces=ms$w13ew0
  240. [DNS]
  241. HostName=ZIPPY-tmp
  242. DNSServers=128.174.5.58,128.174.5.56
  243. DNSEnableWINS=0
  244. DNSLookupOrder=2
  245.  
  246. DomainName=scs.uiuc.edu
  247. [ms$w13ew0]
  248. DefaultGateway=128.174.90.75
  249. IPMask=255.255.255.0
  250. IPAddress=128.174.90.48
  251. Description=SMC EtherCard PLUS Elite 16 Combo (WD/8013EW or 8013EWC)
  252. Binding=ms$w13ew
  253.  
  254. [NBT]
  255. LANABASE=1
  256.  
  257.